Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / authentication / flows

Path parameters:
realm - realm name (not id!)

Sub-Resources
Resources
NameDescription
{flowAlias}
{id}

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/authentication/flows 
POST /admin/realms/{realm}/authentication/flows 

Method Detail

GET /admin/realms/{realm}/authentication/flows

HTTP Example:
GET /admin/realms/{realm}/authentication/flows
API Example:

AuthenticationManagementResource.getFlows({'realm': /* name realm name (not id!) */});

Output:
List<AuthenticationFlowModel>
Produces:
application/json

POST /admin/realms/{realm}/authentication/flows

HTTP Example:
POST /admin/realms/{realm}/authentication/flows
API Example:

AuthenticationManagementResource.createFlow({'realm': /* name realm name (not id!) */,
  '$entity': …});

Input:
AuthenticationFlowModel
Output:
Response
Consumes:
application/json

Keycloak REST Services 1.5.0-Final